home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Megahits 5
/
Megahits 5 (1994)(GTI - Rhein-Main-Soft)(DE)(Disc 2 of 2)[!].iso
/
archive
/
conv
/
cpraw.lha
/
cpraw.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-11-06
|
493b
|
29 lines
/* Cabaret-raw-CP converted to 15 bit 320×256 ILBM, to LoRes-lace HAM */
address "ADPro"
options results
lformat "IFF"
render_type HAM
getfile '"Pick a 15 bit ILBM file"'
if rc = 0 then do
naam = ADPRO_RESULT
say "Loading" naam
load naam
say "Scaling data to fit in interlace screen"
PCT_SCALE 100 200
say "Set screen mode to LoRes-lace (dithering: Floyd-Steinberg)"
dither 1
screen_type 6
say "Rendering image"
execute
naam = naam || '.'
sformat "IFF"
save naam image
end